lcPlugGetOption2 Home

Copies a value of plugin's option into string property.

 BOOL lcPlugGetOption2 (
   LPCWSTR szFileName,
   LPCWSTR szOptName
 );

Parameters
szFileName
  Plugin's filename, without path and extention.
szOptName
  Option name.

Return Value

  If the function succeeds, the return value is nonzero (TRUE).

See Also

  lcPlugSetOption


Code sample:
WCHAR szValue[256];
if (lcPlugGetOption2( L"Plugin_dwg", L"EXP_FILEVER" ) ){
  wcscpy( szValue, lcPropGetStr( 0, LC_PROP_G_STR ) );
}